<<silently>>\n\t<<set $decrement = 40>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nWhatever creature is playing with you can swim faster in water than you can. It pulls you under several more times. You are being swept down river and before long, you are out of sight down a branch of the river that no one had seen before.\n\nYou have a feeling that you will never see your comrades again.\n\n\n[[Continue...|theShore]]
<<silently>>\n\t<<set $decrement = 3>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou figure it will take a couple of weeks to get back to Manaus on foot. You have no way to get food and no way to protect yourself from whatever is out there in the jungle. At least you won't lack for fresh water, not with rivers everywhere. \n\nYou have little idea how to get to Manaus, anyway, since the boat had travelled, not on this tributary, but on the main river from Manaus. You decide to hike downstream until you can find a good crossover point. Once you cross, you can hike through the jungle to the main river. At least that's the plan. Oh, if <<Gwen>> could only see you now!\n\n\n[[Continue...|rethinking]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nWith three people in one canoe and four in the other, there is plenty of room for all our possessions. Every precaution is taken, in the interest of peace, of putting one Professor into each canoe. You end up with Moss, who, for once, is in a very good humor.\n\n\n[[Continue...|rivering]]
<<silently>>\n\t<<set $decrement = 2>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou spend two days in Belém, getting last minute supplies, especially fruits and vegetables. <<Gomez>> helps you rent a boat for the rest of the journey. Loading all the gear and food takes all of a day. Tomorrow morning, you will set off for Santarém.\n\nHere's the info on the available boats:\n\n//[[Emerald Isle|EmeraldIsle]]//\n//[[Fair Weather|FairWeather]]//\n\nWhich boat do you want?\n<<checkbox "$EmeraldIsle" false true>>//Emerald Isle// \n<<checkbox "$FairWeather" false true>>//Fair Weather// \n\n\n[[Continue...|Santarém]]
Config.debug = false;\nstrings.macros.return.text = "Return..."\n\n\n/* ====================================================================*/\n/* ========================= MY OWN MACROS ============================*/\n/* ====================================================================*/\n\n/* this macro converts the string $name to proper name (in passage Start) */\nMacro.add("properName1", {\n\thandler: function() \n\t{\n\t\tvar name2 = state.active.variables.name;\n\t\tvar name2 = name2.slice(1);\n\t\tvar name3 = name2.charAt(0).toUpperCase() + name2.substring(1).toLowerCase();\n\t\tstate.active.variables.name = name3;\n\t}\n});\n\n\n/* this macro converts the string $letter1 to lowercase (in passage showLetter) */\nMacro.add("lowercase", {\n\thandler: function() \n\t{\n\t\tvar letter1 = state.active.variables.letter1; \t// get $letter1\n\t\tvar letter2 = letter1.slice(0,4);\t\t\t\t// get the first four letters of $letter1\n\t\tvar letter2 = letter2.toLowerCase();\t\t\t// convert to lowercase\n\t\t//alert(letter2);\n\t\tif (letter2 == "help") {\n\t\t\tstate.active.variables.letter1 = letter2;\t//if the first 4 letters = "help", then set $letter to "help"\n\t\t}\n\t}\n});\n\n/* === show of passage titles if debugMe is set to TRUE === */\nprerender["addPassageTitle"] = function (content) {\n\tvar myDebug = state.active.variables.debugMe;\n\tif (myDebug == true) {\n\t$(content).append("<span class='orangeText' style='font-weight:bold;'>" + passage() + "</span>") \n\t} ;\n};\n\n/* ====================================================================\nprovides the <<playsound>> macros\nSee: http://www.glorioustrainwrecks.com/node/5061 \n======================================================================*/\n\n(function () {\n "use strict";\n version.extensions['soundMacros'] = {\n major: 1,\n minor: 1,\n revision: 2\n };\n var p = macros['playsound'] = {\n soundtracks: {},\n handler: function (a, b, c, d) {\n var loop = function (m) {\n if (m.loop == undefined) {\n m.loopfn = function () {\n this.play();\n };\n m.addEventListener('ended', m.loopfn, 0);\n } else m.loop = true;\n m.play();\n };\n var s = eval(d.fullArgs());\n if (s) {\n s = s.toString();\n var m = this.soundtracks[s.slice(0, s.lastIndexOf("."))];\n if (m) {\n if (b == "playsound") {\n m.play();\n } else if (b == "loopsound") {\n loop(m);\n } else if (b == "pausesound") {\n m.pause();\n } else if (b == "unloopsound") {\n if (m.loop != undefined) {\n m.loop = false;\n } else if (m.loopfn) {\n m.removeEventListener('ended', m.loopfn);\n delete m.loopfn;\n }\n } else if (b == "stopsound") {\n m.pause();\n m.currentTime = 0;\n } else if (b == "fadeoutsound" || b == "fadeinsound") {\n if (m.interval) clearInterval(m.interval);\n if (b == "fadeinsound") {\n if (m.currentTime>0) return;\n m.volume = 0;\n loop(m);\n } else {\n if (!m.currentTime) return;\n m.play();\n }\n var v = m.volume;\n m.interval = setInterval(function () {\n v = Math.min(1, Math.max(0, v + 0.005 * (b == "fadeinsound" ? 1 : -1)));\n m.volume = Math.easeInOut(v);\n if (v == 0 || v == 1) clearInterval(m.interval);\n if (v == 0) {\n m.pause();\n m.currentTime = 0;\n m.volume = 1;\n }\n }, 10);\n }\n }\n }\n }\n }\n macros['fadeinsound'] = p;\n macros['fadeoutsound'] = p;\n macros['unloopsound'] = p;\n macros['loopsound'] = p;\n macros['pausesound'] = p;\n macros['stopsound'] = p;\n macros['stopallsound'] = {\n handler: function () {\n var s = macros.playsound.soundtracks;\n for (var j in s) {\n\t\tif (s.hasOwnProperty(j)) {\n s[j].pause();\n if (s[j].currentTime) {\n\t\t s[j].currentTime = 0;\n\t\t }\n\t\t}\n }\n }\n }\n var div = document.getElementById("store-area").firstChild;\n var fe = ["ogg", "mp3", "wav", "webm"];\n while (div) {\n var b = String.fromCharCode(92);\n var q = '"';\n var re = "['" + q + "]([^" + q + "']*?)" + b + ".(ogg|mp3|wav|webm)['" + q + "]";\n k(new RegExp(re, "gi"));\n div = div.nextSibling;\n }\n\n function k(c, e) {\n do {\n var d = c.exec(div.innerHTML);\n if (d) {\n var a = new Audio();\n if (a.canPlayType) {\n for (var i = -1; i < fe.length; i += 1) {\n if (i >= 0) d[2] = fe[i];\n if (a.canPlayType("audio/" + d[2])) break;\n }\n if (i < fe.length) {\n a.setAttribute("src", d[1] + "." + d[2]);\n a.interval = null;\n macros.playsound.soundtracks[d[1]] = a;\n } else console.log("Browser can't play '" + d[1] + "'");\n }\n }\n } while (d);\n }\n}());\n\n/* ===================================================== */\n/*! <<replacelink>> macro set for SugarCube 2.x */\n/* ===================================================== */\n!function(){"use strict";function showVer(n,notrans){n&&(n.innerHTML="",new Wikifier(n,n.tweecode),n.setAttribute("data-enabled","true"),n.style.display="inline",n.classList.remove("revision-span-out"),notrans||(n.classList.add("revision-span-in"),n.timeout&&clearTimeout(n.timeout),n.timeout=setTimeout(function(){n.classList.remove("revision-span-in"),n=null},20)))}function hideVer(n,notrans){n&&(n.setAttribute("data-enabled","false"),n.classList.remove("revision-span-in"),n.timeout&&clearTimeout(n.timeout),notrans?(n.style.display="none",n.innerHTML="",n=null):(n.classList.add("revision-span-out"),n.timeout=setTimeout(function(){"false"===n.getAttribute("data-enabled")&&(n.classList.remove("revision-span-out"),n.style.display="none",n.innerHTML=""),n=null},1e3)))}function tagcontents(b,starttags,desttags,endtags,k){function tagfound(i,e,endtag){for(var j=0;j<e.length;j++)if(a.indexOf("<<"+e[j]+(endtag?">>":""),i)===i)return e[j]}for(var tg,l=0,c="",a=b.source.slice(k),i=0;i<a.length;i++){if(tg=tagfound(i,starttags))l++;else{if((tg=tagfound(i,desttags,!0))&&0===l)return b.nextMatch=k+i+tg.length+4,[c,tg];if((tg=tagfound(i,endtags,!0))&&(l--,l<0))return null}c+=a.charAt(i)}return null}function revisionSpanHandler(g,e,f,b){function mkspan(vtype){return h=insertElement(m,"span",null,"revision-span "+vtype),h.setAttribute("data-enabled",!1),h.style.display="none",h.tweecode="",h}var becomes,c,cn,m,h,vsn,k=b.source.indexOf(">>",b.matchStart)+2,vsns=[],vtype=e,flen=f.length;if(this.shorthand&&flen)for(;f.length>0;)vsns.push([f.shift(),"insert"===this.flavour?"gains":"becomes"]);else("insert"===this.flavour||"continue"===this.flavour&&"time"===this.trigger)&&vsns.push(["","becomes"]);if("continue"===this.flavour&&flen)b.nextMatch=k+b.source.slice(k).length,vsns.push([b.source.slice(k),vtype]);else{if(becomes=["becomes","gains"],c=tagcontents(b,begintags,becomes.concat(endtags),endtags,k),c&&endtags.indexOf(c[1])===-1){for(;c;)vsns.push(c),c=tagcontents(b,begintags,becomes,endtags,b.nextMatch);c=tagcontents(b,begintags,["/"+e,"end"+e],endtags,b.nextMatch)}if(!c)return void throwError(g,"<<"+e+">>: cannot find a matching close tag");vsns.push(c),"continue"===this.flavour&&(k=b.nextMatch,b.nextMatch=k+b.source.slice(k).length,vsns.push([b.source.slice(k),""]))}for("remove"===this.flavour&&vsns.push(["","becomes"]),cn=0,m=insertElement(g,"span",null,e),m.setAttribute("data-flavour",this.flavour),h=mkspan("initial"),vsn=vsns.shift(),h.tweecode=vsn[0],showVer(h,!0);vsns.length>0;)vsn&&(vtype=vsn[1]),vsn=vsns.shift(),h=mkspan(vtype),h.tweecode=vsn[0];"function"==typeof this.setup&&this.setup(m,g,e,f)}function revisionSetup(m,g,e,f){m.className+=" "+f[0].replace(" ","_")}function keySetup(m,g,e,f){f[0];m.setEventListener("keydown",function l(e){var done=!revise("revise",m);done&&m.removeEventListener("keydown",l)})}function timeSetup(m,g,e,f){function cssTimeUnit(s){if("string"==typeof s){if("ms"===s.slice(-2).toLowerCase())return Number(s.slice(0,-2))||0;if("s"===s.slice(-1).toLowerCase())return 1e3*Number(s.slice(0,-1))||0}return throwError(g,"<<"+e+'>>: "'+s+'" is not a valid CSS time unit'),0}var tm=cssTimeUnit(f[0]),s=passage();setTimeout(function timefn(){if(passage()===s){var done=!revise("revise",m);done||setTimeout(timefn,tm)}},tm)}function hoverSetup(m){var fn,noMouseEnter=null!==document.head.onmouseenter,m1=m.children[0],m2=m.children[1],gains=m2.className.indexOf("gains")>-1;m1&&m2&&(m1.onmouseenter=function(e){for(var efp=document.elementFromPoint(e.clientX,e.clientY);efp&&efp!==this;)efp=efp.parentNode;efp&&"false"!==this.getAttribute("data-enabled")&&revise("revise",this.parentNode)},m2.onmouseleave=function(e){for(var efp=document.elementFromPoint(e.clientX,e.clientY);efp&&efp!==this;)efp=efp.parentNode;efp||"false"!==this.getAttribute("data-enabled")&&revise("revert",this.parentNode)},gains&&(m1.onmouseleave=m2.onmouseleave),noMouseEnter&&(fn=function(n){return function(e){event.relatedTarget&&(event.relatedTarget===this||this.compareDocumentPosition(event.relatedTarget)&Node.DOCUMENT_POSITION_CONTAINED_BY)||this[n]()}},m1.onmouseover=fn("onmouseenter"),m2.onmouseout=fn("onmouseleave"),gains&&(m1.onmouseout=m2.onmouseout)),m=null)}function mouseSetup(m){var evt=null===document.head.onmouseenter?"onmouseenter":"onmouseover";m[evt]=function(){var done=!revise("revise",this);done&&(this[evt]=null)},m=null}function linkSetup(m,g,e,f){var l=document.createElement("a"),p=m.parentNode;l.className="link-internal replaceLink",p.insertBefore(l,m),l.insertBefore(m,null),jQuery(l).ariaClick(function(){var done=!1;m&&m.parentNode===this&&(done=!revise("revise",m),scrollWindowTo(m)),done&&(this.parentNode.insertBefore(m,this),this.parentNode.removeChild(this))}),l=null}function visitedSetup(m,g,e,f){var done,sav=State.variables,os="once seen",d=m.firstChild&&("insert"===this.flavour?m.firstChild.nextSibling:m.firstChild).tweecode;if(sav[os]=sav[os]||{},d&&!sav[os].hasOwnProperty(d))sav[os][d]=1;else{for(var i=sav[os][d];i>0&&!done;i--)done=!revise("revise",m,!0);sav[os].hasOwnProperty(d)&&(sav[os][d]+=1)}}function insideDepartingSpan(elem){for(var r=elem.parentNode;!r.classList.contains("passage");){if(r.classList.contains("revision-span-out"))return!0;r=r.parentNode}}function reviseAll(rt,rname){for(var rall=document.querySelectorAll(".passage [data-flavour]."+rname),ret=!1,i=0;i<rall.length;i++)insideDepartingSpan(rall[i])||(ret=revise(rt,rall[i])||ret);return ret}function revise(rt,r,notrans){function doToGainerSpans(n,fn){for(var k=n-1;k>=0&&rc[k+1].classList.contains("gains");k--)fn(rc[k],notrans)}for(var ind2,curr,next,ind=-1,rev="revert"===rt,rnd=rt.indexOf("random")>-1,fl=r.getAttribute("data-flavour"),rc=r.childNodes,cyc="cycle"===fl,rcl=rc.length-1,k=0;k<=rcl;k++)"true"===rc[k].getAttribute("data-enabled")&&(ind=k);rev&&(ind-=1),curr=ind>=0?rc[ind]:cyc?rc[rcl]:null,ind2=ind,rnd&&(ind2=(ind+Math.floor(Math.random()*rcl))%rcl),next=ind2<rcl?rc[ind2+1]:cyc?rc[0]:null;var docurr=rev?showVer:hideVer,donext=rev?hideVer:showVer,currfn=function(){next&&next.classList.contains("gains")&&!rnd||(docurr(curr,notrans),doToGainerSpans(ind,docurr,notrans))},nextfn=function(){donext(next,notrans),rnd&&doToGainerSpans(ind2+1,donext,notrans)};return rev?(nextfn(),currfn()):(currfn(),nextfn()),!!cyc||(rev?ind>0:ind2<rcl-1)}if("undefined"==typeof version||"undefined"==typeof version.title||"SugarCube"!==version.title||"undefined"==typeof version.major||version.major<2)throw new Error("<<replacelink>> macro set requires SugarCube 2.0.0 or greater, aborting load");version.extensions.replacelinkMacroSet={major:1,minor:1,revision:7};var begintags=[],endtags=[];[{name:"insertlink",flavour:"insert",trigger:"link",setup:linkSetup},{name:"timedinsert",flavour:"insert",trigger:"time",setup:timeSetup},{name:"insertion",flavour:"insert",trigger:"revisemacro",setup:revisionSetup},{name:"later",flavour:"insert",trigger:"visited",setup:visitedSetup},{name:"keyinsert",flavour:"insert",trigger:"key",setup:keySetup},{name:"replacelink",flavour:"replace",trigger:"link",setup:linkSetup},{name:"timedreplace",flavour:"replace",trigger:"time",setup:timeSetup},{name:"mousereplace",flavour:"replace",trigger:"mouse",setup:mouseSetup},{name:"hoverreplace",flavour:"replace",trigger:"hover",setup:hoverSetup},{name:"revision",flavour:"replace",trigger:"revisemacro",setup:revisionSetup},{name:"keyreplace",flavour:"replace",trigger:"key",setup:keySetup},{name:"timedremove",flavour:"remove",trigger:"time",setup:timeSetup},{name:"mouseremove",flavour:"remove",trigger:"mouse",setup:mouseSetup},{name:"hoverremove",flavour:"remove",trigger:"hover",setup:hoverSetup},{name:"removal",flavour:"remove",trigger:"revisemacro",setup:revisionSetup},{name:"once",flavour:"remove",trigger:"visited",setup:visitedSetup},{name:"keyremove",flavour:"remove",trigger:"key",setup:keySetup},{name:"continuelink",flavour:"continue",trigger:"link",setup:linkSetup},{name:"timedcontinue",flavour:"continue",trigger:"time",setup:timeSetup},{name:"mousecontinue",flavour:"continue",trigger:"mouse",setup:mouseSetup},{name:"keycontinue",flavour:"continue",trigger:"key",setup:keySetup},{name:"cycle",flavour:"cycle",trigger:"revisemacro",setup:revisionSetup},{name:"mousecycle",flavour:"cycle",trigger:"mouse",setup:mouseSetup},{name:"timedcycle",flavour:"cycle",trigger:"time",setup:timeSetup},{name:"keycycle",flavour:"replace",trigger:"key",setup:keySetup}].forEach(function(e){e.handler=revisionSpanHandler,e.shorthand=["link","mouse","hover"].indexOf(e.trigger)>-1,macros[e.name]=e,Macro.tags.register(e.name),begintags.push(e.name),endtags.push("/"+e.name,"end"+e.name)}),macros.revertlink=macros.reviselink=macros.randomiselink=macros.randomizelink={handler:function(a,b,c){function disableLink(l){l.style.display="none"}function enableLink(l){l.style.display="inline"}function updateLink(l){if(l.className.indexOf("random")>-1)return void enableLink(l);for(var cannext,canprev,r,fl,rall=document.querySelectorAll(".passage [data-flavour]."+rname),i=0;i<rall.length;i++)r=rall[i],fl=r.getAttribute("data-flavour"),insideDepartingSpan(r)||("cycle"===fl?cannext=canprev=!0:("false"===r.firstChild.getAttribute("data-enabled")&&(canprev=!0),"false"===r.lastChild.getAttribute("data-enabled")&&(cannext=!0)));var can=l.classList.contains("revert")?canprev:cannext;(can?enableLink:disableLink)(l)}function toggleText(w){w.classList.toggle(rl+"Enabled"),w.classList.toggle(rl+"Disabled"),w.style.display="none"===w.style.display?"inline":"none"}if(c.length<2)return void throwError(a,"<<"+b+">>: insufficient arguments (requires at least 2)");var l,rname,actName=b.slice(0,-4),rl="reviseLink",v="",end=!1,out=!1;switch(rname=c.shift().replace(" ","_"),l=insertElement(a,"a"),l.className="link-internal "+rl+" "+rl+"_"+rname+" "+actName,c.length>1&&"$"===c[0][0]&&(v=c[0].slice(1),c.shift()),c[c.length-1]){case"end":end=!0,c.pop();break;case"out":out=!0,c.pop()}for(var h=State.variables,i=0;i<c.length;i++){var on=i===Math.max(c.indexOf(h[v]),0),d=insertElement(null,"span",null,rl+(on?"En":"Dis")+"abled");on?(h[v]=c[i],l.setAttribute("data-cycle",i)):d.style.display="none",insertText(d,c[i]),l.appendChild(d)}jQuery(l).ariaClick(function(){reviseAll(actName,rname);var lall,t=this.childNodes,u=this.getAttribute("data-cycle")-0,m=t.length;if((end||out)&&u>=m-(end?2:1)){if(!end)return void this.parentNode.removeChild(this);var n=this.removeChild(t[u+1]||t[u]);n.className=rl+"End",n.style.display="inline",this.parentNode.replaceChild(n,this)}else toggleText(t[u]),u=(u+1)%m,v&&(h[v]=c[u]),toggleText(t[u]),this.setAttribute("data-cycle",u);lall=document.getElementsByClassName(rl+"_"+rname);for(var i=0;i<lall.length;i++)updateLink(lall[i])}),disableLink(l),setTimeout(function(l){return function(){updateLink(l)}}(l),1),l=null}},macros.mouserevise=macros.hoverrevise={handler:function(a,b,c,d){var endtags=["/"+b,"end"+b],evt=null===window.onmouseenter?"onmouseenter":"onmouseover",t=tagcontents(d,[b],endtags,endtags,d.source.indexOf(">>",d.matchStart)+2);if(t){var rname=c[0].replace(" ","_"),h=insertElement(a,"span",null,"hoverrevise hoverrevise_"+rname),f=function(){var done=!reviseAll("revise",rname);"hoverrevise"!=b&&done&&(this[evt]=null)};new Wikifier(h,t[0]),"hoverrevise"===b?(h.onmouseover=f,h.onmouseout=function(){reviseAll("revert",rname)}):h[evt]=f,h=null}}},Macro.tags.register("mouserevise"),Macro.tags.register("hoverrevise"),macros.instantrevise={handler:function(a,b,c,d){reviseAll("revise",c[0].replace(" ","_"))}}}();\n\n
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nAll of a sudden, Professor Summerlee's pent up annoyance brakes loose. Moss had assigned him to carry nothing but a barometer, but now the whole issue of who is in charge comes to a head.\n\n"May I ask, sir," says Summerlee, with vicious calm, "who you think you are to take it upon yourself to command everyone else around like this?"\n\nMoss glares at Summerlee.\n\n"I do it, Professor Summerlee, as leader of this expedition."\n\n"I //must// to tell you, sir, that I //do not// recognize you as any kind of leader. You are a man whose truthfulness is on trial, and this committee is here to try it. You walk, sir, with your judges."\n\nThe two go at each other for the longest time. If you are to make any progress on this journey, you have to intervene.\n\nWhat would you like to do?\n\n[[Scold them|scolding]]\n[[Distract them|distract]]
Lost World
<<silently>>\n\t<<set $decrement = 2>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nThe flight to Brasilia is uneventful, though long. You mumble to Lord John that the Pereira da Pinta Company is being very helpful in finding what is needed for the trip inland. You hire a tour guide <<if $sex eq"F">>with jet black hair named, appropriately,<<else>>named<<endif>> <<Gomez>>, along with a laborer, Manuel. Roxton and <<Gomez>> then go about buying supplies (tents, bedding, food, guns, binoculars) and renting a Jeep. There are a lot of preparations and you spend the good part of a week in Brasilia.\n\nFinally, with <<Gomez>> at the wheel, and the gear packed inside and on top of the Jeep, you set off for Belém near the mouth of the Amazon.\n\n[[South american map - small|small South American map]]\n[[South American map - large|large South American map]]\n\n\n[[Continue...|Belém]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n<b class="speaker">One week later...</b>\n\nAs you approach the airport terminal, you hear a shout from behind. Professor Moss arrives unexpectedly to send you off.\n\n"My directions for your instruction and guidance are in this sealed envelope. You will open it when you reach a town upon the Amazon which is called Manaus, but not until the date and hour which is marked upon the outside. Have I made myself clear? Good bye, <<print $name>>. I put no restictions on what you might write home about. Good-bye, Lord John Roxton. Science is not your 'thing' but I expect that you will be thrilled to bring down a Tyranosaurus Rex. And good-bye to you also, Professor Summerlee. If you are still capable of self-improvement, of which I am frankly unconvinced, you will surely return to London a wiser man."\n\nMoss turns and leaves without ceremony. You and your comrades head for the gate.\n\n\n[[Continue...|airTrip]]
<table class="letter"><tr><td class="letterContents">Dear Professor Moss,\n\nAs a student of Nature, I have always taken an interest in your ideas about dinosaurs and have re-read your masterly lecture you gave in Vienna. It seems to be the last word in the matter. I have heard it rumored that you plan to return to South America. Would it be possible for me to return with you? \n\nI remain, Sir, with profound respect, \n\nYours very truly, \n\n<<print $name>></td></tr></table>\s\n\n[[You are good with this letter|receiveLetter]]\n[[You would like to try writing your own letter|writeLetter]]
<<silently>>\n\t<<set $decrement = 5>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nSuddenly, from the back of the canoe, Professor Moss gives a shout of satisfaction and points to a single tree that projects at an odd angle over the side of the stream.\n\n"What do you make of that?" he asks.\n\n"It is surely an Assai palm," says Professor Summerlee.\n\n"Exactly. It was an Assai palm that I took for my landmark. The secret opening is half a mile up stream, on the other side of the river. There is no break in the trees. That is the wonder and the mystery of it. There..."\n\nMoss points ahead, and across the river. \n\n"Do you see the light-green rushes, instead of dark-green undergrowth? There... between the great cotton woods. That is my private gate into the unknown."\n\nThe unknown in a mystery novel is exciting. The unknown in the middle of unexplored jungle with danger on every side: that's terrifying.\n\n\nWhat would you like to do?\n\n[[The smart thing: go home|goHome]]\n[[Continue into the unknown and dangerous|shallows]]
data:image/jpg;base64,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
<<silently>>\n\t<<set $decrement = -1>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nIn Manaus, you are fortunate to run into Mr. Shortman, the representative of the British and Brazilian Trading Company. He hosts you until the day when you are empowered to open the [[letter of instructions]] given to you by Professor Moss back home.
<<silently>>\n\t<<set $decrement = 2>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou start yelling for <<Gomez>> and the Professors. In between yells, you listen. It has gotten frighteningly quiet in the jungle. Not a peep.\n\nYou decide that yelling is useless.\n\n\n[[Continue...|WalkbacktoRiver]]
<h2>Lord John Roxton</h2>\s\nLord John has a strongly-curved nose, hollow, worn cheeks, dark, ruddy hair, thin at the top, crisp, virile moustache, and a small, aggressive tuft upon his projecting chin. In figure he is spare, but very strongly built. His height is a little over six feet, but he seems shorter on account of a peculiar rounding of the shoulders.\n\nLord John Roxton is about 40 years old, and exceedingly neat and prim in his ways, dresses always with great care in white drill suits and high brown boots, and shaves at least once a day. He is always quick to answer a question or join in a conversation, talking in a queer, jerky, half-humorous fashion. His knowledge of the world, and very especially of South America, is surprising, and he has a whole-hearted belief in the possibilities of our journey which is not to be dashed by the sneers of Professor Summerlee. He has a gentle voice and a quiet manner, but behind his twinkling blue eyes there lurks a capacity for furious wrath and implacable resolution, the more dangerous because they are held in leash. \n\n<<return>>
<<return>>\n\nThe //Fair Weather// is a Sea Ray 330 Sundancer, a 33 foot boat with a Mercruiser motor. The //Fair Weather// sleeps 6, has a small kitchenette with a microwave and refrigerator. The boat is equipped with a VHF radio and has one bathroom with a sink.
/* DECLARE VARIALBES USED THROUGHOUT THE GAME */\n<<set $debugMe = true>>\n<<set $name = "">>\n<<set $name2 = "">>\n<<set $name3 = "">>\n<<set $Men = "">>\n<<set $Women = "">>\n<<set $nameFound = false>>\n<<set $sex = "F">>\n<<set $signal = "signal.wav">>\n<<set $storyType = "kissing">>\n<<set $letter1 = "HeLP">>\n<<set $decrement = 0>>\t\t\t//what a given action costs in terms of survivalIndex//\n<<set $EmeraldIsle = true>>\n<<set $FairWeather = false>>\n<<set $tripLength = 1>>\n<<set $survivalIndex = 100>>\t//the probability that you will survive this adventure//\n/*the probability of returning home (or being stuck in Brazil)*/\n<<set $returnIndex = (($survivalIndex*$survivalIndex*0.0083) + ($survivalIndex*0.25) - 8.333)>>\t\t\n\n/* WIDGETS THAT FIX NAMES */\n\t<<widget "Gomez">><<if $sex eq "M">>Gomez<<elseif $sex eq "F">>Jet<<endif>><<endwidget>>\n\t/* Manuel is the hired laborer */\n\n/*WIDGETS THAT FIX PRONOUNS*/\n\t<<widget "she">><<if $sex eq "M">>she<<elseif $sex eq "F">>he<<else>>it<<endif>><<endwidget>>\n\t<<widget "her">><<if $sex eq "M">>her<<elseif $sex eq "F">>him<<else>>its<<endif>><<endwidget>>\n\t<<widget "hers-his">><<if $sex eq "M">>hers<<elseif $sex eq "F">>his<<else>>its<<endif>><<endwidget>>\n\t<<widget "her-his">><<if $sex eq "M">>her<<elseif $sex eq "F">>his<<else>>its<<endif>><<endwidget>>\n\n\n\t/*reverse the pronouns*/\n\t<<widget "rshe">><<if $sex eq "F">>she<<elseif $sex eq "M">>he<<else>>it<<endif>><<endwidget>>\n\t<<widget "rher">><<if $sex eq "F">>her<<elseif $sex eq "M">>him<<else>>its<<endif>><<endwidget>>\n\t<<widget "rhers-his">><<if $sex eq "F">>hers<<elseif $sex eq "M">>his<<else>>its<<endif>><<endwidget>>\n\n\t/* if user is male, then the supporting character is Gwen; otherwise Glenn */\n\t<<widget "Gwen">><<if $sex eq "F">>Glenn<<elseif $sex eq "M">>Gwen<<endif>><<endwidget>>\n\n/* WIDGET THAT NAMES THE BOAT */\n\t<<widget "amazonShip">><<if $EmeraldIsle eq true>>Emerald Isle<<else>>Fair Weather<<endif>><<endwidget>>\n\n/* WIDGET THAT IS USED IN EVERY PASSAGE; NOTE: THE BLANK LINES PRIOR TO \s<<endwidget\s>> ARE PART OF THE WIDGET */\n\t<<widget "tallyIndexes">>\n\t\t<<silently>>\n\t\t\t<<set $survivalIndex -= $decrement>>\n\t\t\t<<if $survivalIndex gt 100>><<set $survivalIndex = 100>><<endif>>\n\t\t\t<<if $decrement neq 0>><<playsound "sound/signal.wav">><<endif>>\n\t\t\t<<set $returnIndex = (($survivalIndex*$survivalIndex*0.0083) + ($survivalIndex*0.25) - 8.333)>>\n\t\t\t<<if $returnIndex lt 0>><<set $returnIndex = 0>><<endif>>\n\t\t<<endsilently>>\s\n\t\t<table class="indexValue" align="right"><tr><td align="right">''<<print "Survival index: " + Math.trunc($survivalIndex)>>''</td><td align="right">''<<print "Return index: " + Math.trunc($returnIndex)>>''</td></tr><tr><td colspan=2><hr class="orangeHR"></td></tr></table>\n\n\n\n\t<<endwidget>>\n\n<<widget "properName">>\s\n\t<<set $name2 = $name.slice(0,1)>>\n\t<<set $name2 = $name2.toUpperCase()>>\n\t<<set $name = $name2 + $name.substr(1)>>\n<<endwidget>>\s\n\n\n\n\n\n\n
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nFor two days, you and the others paddle up a river that, though just a branch of the Amazon, is still several hundred yards wide. The river is not the only thing flowing. Also flowing is a constant stream of updates on the plants and animals visible from the canoes from both Professors. They make no secret of wanting to outdo one another in showing off their academic brilliance. \n\n\n[[Continue...|throbbing]]
<<silently>>\n\t<<set $decrement = 20>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou finally get up enough courage to tell Professor Moss that continuing on this supremely dangerous mission is the most ridiculous decision of your life. \n\nMoss chews you out. "Well, as much as I will miss having a pair of hands to lighten the work, it is far to our advantage not to have a coward in tow. Aucaman will accompany you back to the village. You can wait on board the //<<amazonShip>>// until we arrive. That is the best that we can do."\n\nMoss pulls Aucaman asided and tells him, "Watch this good-for-nothing that he doesn't take leave in our ship."\n\nAlong with Aucaman, you make your departure from the expedition, feeling quite badly about all of it, wishing things could have been different, and wondering what <<Gwen>> will think when you return home, //if// you return home. \n\n\n[[Continue...|returnToVillage]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nOn the third day, you notice a deep throbbing sound in the air, rhythmic and solemn.\n\n"What is it?" you ask. \n\n<<Gomez>> knows exactly what it is. "War drums," he says, obviously nervous. "They watch us every mile of the way. Get us if they can." Aucaman and Quidel keep rowing but they are scanning the forest on both sides of the river.\n\nAt least six or seven drums are throbbing from various points. Sometimes they beat quickly, sometimes slowly, sometimes in obvious question and answer, one far to the east breaking out in a high staccato rattle, and being followed after a pause by a deep roll from the north. There was something indescribably nerve-shaking and menacing in that constant mutter. <<Gomez>> kept repeating: "We will get you if we can. We will get you if we can." \n\n\n[[Continue...|moored]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nHaving survived marsh water up to your knees and clouds of mosquitoes yesterday, you push onward for a second day.\n\nYou march upward and notice the vegetation changing from tropical forest to thinner woods with huge trees. You cross occasional brooks, which provide fresh water and perfect camp sites. \n\n[[Continue...|9daysLater]]
<<silently>>\n\t<<set $decrement = 1>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou walk for about 15 minutes downstream before deciding that this plan is just not going to work. For as far as you can see, the only way across the river is to swim and there is no way you are going to wade into this water.\n\nYou walk back to the point where you first landed ashore.\n\n\n[[Continue...|WalkbacktoRiver]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n<<if $EmeraldIsle eq true>><<set $tripLength = 3>><<else>><<set $tripLength = 6>><<endif>>\s\nFor <<print $tripLength>> days you motor north-westwards up a stream which even here, a thousand miles from its mouth, is still so enormous that from its center the two banks are almost invisible. <<if $EmeraldIsle eq true>><<set $tripLength = 2>><<else>><<set $tripLength = 4>><<endif>><<print $tripLength>> days after leaving Manaus you turn into a tributary that narrows rapidly.\n\s\n<<if $FairWeather eq true>>\s\nYou go to the kitchenette and <<Gomez>> informs you that the boat is running low on food. It has taken a lot longer to get to the destination than expected because the boat is too small and too slow and <<rshe>> grumbles that you should have picked the other boat. You go hungry for the rest of the day.\n<<endif>>\s\n\n\n[[Continue...|indianVillage]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n"Um, I, um, um..."\n\nYou have never seen such an imposing figure in all your life. Frankly, you are terrified and not so sure about all this adventure stuff. This is almost as much adventure as you can handle. But, you think about <<Gwen>>. You can't back out now.\n\n"Professor Loss, er... Moss. Um, I'm <<print $name>> and I was wondering if, I was wondering if, um, if"\n\n"Yes, spit it out!"\n\n"If you are going to South America, can I go with you?"\n\n"Hmph. What good are ya?"\n\n"I can carry luggage and cook and I know how to use a computer and how to edit photos. And, and... if you'll excuse me, but knowing your history, Sir, I think you could use me."\n\n\n[[Continue...|response2request]]
A fantastic expedition back to the dawn of time
He crossed to an oaken cupboard, and as he threw it open I caught a glimpse of glistening rows of parallel barrels, like the pipes of an organ.\n\n"I'll see what I can spare you out of my own battery," said he.\n\nOne by one he took out a succession of beautiful rifles, opening and shutting them with a snap and a clang, and then patting them as he put them back into the rack as tenderly as a mother would fondle her children.\n\nBland's .577 axite express; "I got that big fellow with it." He glanced up at the white rhinoceros.\n\n.470, telescopic sight, double ejector, point-blank up to three-fifty\n\nHe took out a beautiful brown-and-silver rifle. "Well rubbered at the stock, sharply sighted, five cartridges to the clip. You can trust your life to that." He handed it to me and closed the door of his oak cabinet.\n
<b class="speaker">Tips for Successful CYOA Stories</b>\n\nSchafer then explained what he sees as @@.speaker;“good puzzle theory,”@@ noting that puzzles should include the following elements:\n* A clear obstacle\n* A clear motivation\n* Responses for failed solutions (with hints)\n* Rewards for getting close\n* An “a-ha” feeling and not a “WTF” feeling after you solve the puzzle\n* Appreciation of the puzzle in retrospect that makes you want to tell people about it\n\nIn terms of what they didn’t keep, Schafer said that Double Fine has simplified the typical adventure game interface -- which usually includes too many verbs -- and instead replaced the idea of verbs with inventory items. Lee Petty then took the stage, explaining that old adventure games “were largely very static worlds” and that Double Fine instead added depth that allows players to travel into the background of the scene, allowing them to feel like they’re truly exploring an area.
Sir John Ballinger is the best gentleman jock in the north country. I could hold him on the flat at my best, but over jumps he's my master.\n\nHe's a hard nail, is Jack, and a dead shot, too, but you can't leave a Grand National winner to die like that--what?\n\nI don't think that I am a particularly brave man. I have an Irish imagination which makes the unknown and the untried more terrible than they are. On the other hand, I was brought up with a horror of cowardice and with a terror of such a stigma. I dare say that I could throw myself over a precipice, like the Hun in the history books, if my courage to do it were questioned, and yet it would surely be pride and fear, rather than courage, which would be my inspiration.\n\nI saw after Jack Ballinger myself this mornin'. He blew a hole in the skirt of my kimono, bless his shaky old hand... \n\nYou see, between you an' me close-tiled, I look on this South American business as a mighty serious thing, and if I have a pal with me I want a man I can bank on. So I sized you down, and I'm bound to say that you came well out of it.\n\n<<return>>\n\n
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nAfter three more days of rowing upstream, it becomes evident that the canoes are no longer of any use, because the stream is rapidly growing more shallow. \n\nFinally, you pull the canoes up onto the shore and conceal them in the bushes, blazing a tree with your ax so that you can find them again. You spend the night on the bank of the stream.\n\nIn the morning, you distribute the supplies among the whole group -- guns, ammunition, food, a tent, blankets, and the rest. Of course, Professor Moss, as usual, is directing everything, as he has done all along. \n\n\n[[Continue...|pepperPots]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou rise early the next morning, sore from all the chopping the previous day. Not far from camp, the vegetation changes once again: an open plain, sloping upwards, dotted with clumps of small trees and ferns.\n\nSuddenly, Moss stops and points off to the right. \n\n"Did you see it?" he cries out. "Summerlee, did you see it?"\n\nYou note that Summerlee is looking in the direction that Moss is pointing. \n\n"What do you claim that you saw?" asks Summerlee.\n\n"To the best of my belief, a pterodactyl."\n\nSummerlee bursts into laughter "A pter-fiddlestick!" says he. "It was a stork, if ever I saw one."\n\nYou are afraid that another fierce argument is about to happen, but thankfully Moss is too furious to speak. He simply throws his pack over his shoulder and starts marching.\n\nYou wonder if Moss actually saw a pterodactyl or if he's nuts. But that has been the question all along and this incident resolves nothing.\n\n\n[[Continue...|secondRidge]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n<<lowercase>>\s\n<<if $letter1 eq "help" or $letter1 eq "" or $letter1 eq " " or $letter1 eq " ">>\s\n\t<<display prewrittenLetter>>\s\n<<else>>\s\n<table class="letter"><tr><td class="letterContents">\s\nDear Professor Moss, \n\n<<print $letter1>>\n\t\nWarmly,\n\n<<print $name>></td></tr></table>\s\n\n\n[[Continue...|receiveLetter]]\n<<endif>>\s
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n<b class="speaker">Two days later...</b>\n\nYou receive the following letter from Professor Moss. \n\nDear <<print $name>>,\n\nThe irrational contempt that my colleagues have for me prevents my traveling with you. So be it.\n\nNevertheless, here are the travel details. You will leave one week from tomorrow, flying to Brazil on British Airways, Flight 4356. I have appointed [[Lord John Roxton]] and [[Professor Summerlee]] to accompany you. The latter is a disagreeable old coot. He holds a wrong-headed and disengenuous opinion that I am ignorant, but he is a well respected Professor of Comparative Anatomy and, when you find what you are looking for, he, of all people, will convince the world that I have been right all along, and it is he who will be found to be the fool.\n\nYours expectantly,\n\nProfessor Moss\n\n\n[[Continue...|airportTerminal]]
<<if $debugMe>>\n[[documentation|../documentation.html]]\n<b class="speaker">Jump to a location:</b>\n[[goto Santarém|Santarém]]\n[[writeLetter]]\n[[MossExplanation]]\n[[villagePrep]]\n[[rapids]]\n[[pepperPots]]\n[[secondRidge]] -- furthest point in story\n\n[[returnToVillage]] when the group returns to the Indian village\n<<endif>>\n
<<silently>>\n\t<<set $decrement = 5>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nIn this hot, humid weather, the river looks like an inviting way to cool off. You take off your shoes and socks, and crawl over the edge of the //<<amazonShip>>//, and slip into the water.\n\nIt feels cool. Then you feel something around your feet and legs; LOTS of somethings. You panic, suddenly realizing that jumping into a strange river might have been a really bad idea. You yell repeatedly for help from your comrades on the boat. Something pulls you under. You come back up. Under again. Back up. Gasping for air. Your heart is beating hard and fast. \n\n\n[[Swim for the shore|endofSwim]]\n[[Wait for the crew to throw a rope|takeRope]]
<<return>>\n\n[img[South american map - large|LWimages/south-america-map-marked.jpg]]
The upper right hand corner of every page displays two numbers: a survival index and a return index.\n[img[indexes]] \n\nBoth indexes start near 100 and can get as low as 0. The closer you get to zero, the less likely you will survive or return from your trip. Your goal is to not only survive your adventure, but to return home to tell about it.\n\nIt is possible to survive, but to find yourself unable to ever return home because your health and well-being have suffered too much.\n\nGood decisions increase your scores; bad decisions decrease your scores. Really bad decisions decrease your scores a lot. A really, really bad decision will take you to GAME OVER!\n\n<<return>>
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou call <<Gwen>> and tell <<her>> about the letter from Professor Moss and <<she>> can tell, even over the phone, that you are very excited. <<Gwen>> asks you, "What's next?"\n\n"Well, I expect to get the details about the trip from Professor Moss in the next day or so."\n\n<<Gwen>> tells you that <<she>> is very excited for you. You are thrilled to hear <<her>> say that <<if $sex eq "M">>because the possibility of <<her>> accepting your proposal just went up one notch<<else>>because you really appreciate <<her-his>> support<<endif>>.\n \n\n[[You are afraid of flying -- travel by ship|shipTravel]]\n[[You want to get to Brazil quickly -- travel by airplane|planeTravel]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nThere is a loud and determined knock on the door frame. You are all startled and turn immediately to find Professor Moss standing in the doorway wearing a straw hat.\n\nLord John says, "I cannot tell you how relieved I am that you should show up, considering that when we saw that the letter was blank, our whole adventure had come to an unexpected end." There are unconscious nods all around, although I can tell that Professor Summerlee is quite conflicted. On the one hand, he is now glad the his long journey will not be for nothing. On the other hand, his distaste for his colleague is visible on his sour face. \n\n\n[[Continue...|MossExplanation]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nThat night, you moor the canoes with heavy stones for anchors in the center of the stream, and make every preparation for a possible attack. Nothing comes, though, and at dawn the next morning, you set out in the canoes again, leaving the drum-beating behind.\n\n\n[[Continue...|rapids]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nFinally, after walking for an hour, you come to the place where the river splits. Last you knew, the boat was upstream in Manaus, but you don't know how far away that is.\n\nListening carefully, you hear the breeze in the trees, birds, the river water spashing against the shore... and... and... the low, quiet hum of a motor boat. Then, around a bend in the river, there is the //<<amazonShip>>// coming back up the river. You start jumping up and down, waving your hands and yelling. <<Gomez>> spots you.\n\nA few minutes later, trembling with fear, you swim out into the water to grab a life preserver. <<Gomez>> and Manuel haul you aboard. Professor Summerlee lectures you smartly for doing such a stupid thing and then proceeds to blubber about all the fuel they had wasted looking for you up and down the river. <<Gomez>> takes the //<<amazonShip>>// back to Manaus.\n\n\n[[Continue...|shortman]]
\n
Based on the story by Arthur Conan Doyle of the same name
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n<table class="letter"><tr><td class="letterContents"><<print $name>>,\n\nI have received your note, in which you claim be able to help me on my next trip to South America. I take offense at the thought of needing help from anyone, but if you want to go, I could use a witness, since so few people believe what I have to say about the continent. I will be contacting you when it is convenient for me.\n\nYours faithfully,\n\nHarold I. Moss\nProfessor of Zoology</td></tr></table>\s\n\n\n[[Continue...|theOffer]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nMoss explains that he sent no maps or directions because he knew that his own presence and guidance would be enough. And he assures us that now that he has arrived, there would be no way that we would fail to reach our destination.\n\nConsidering the difficulties of the journey so far, you are not convinced by Moss' confident claims. \n\n\n[[Continue...|leaving Manaus]]
\t<<if not $nameFound>>\n\t\t<<set $name = prompt("Please enter your name...", $name)>>\n\t<<endif>>\n/*set name to title case (proper name) and save it for the next session*/\n\t<<properName>>\n\t<<remember $name>>\n\n/*establish a list of people eligible to use this story*/\n\t<<set $Women = ["Amy", "Sami", "Jill", "Bella", "Bethany", "Bronwyn", "Linda"]>>\n\t<<set $Men = ["Jeremy", "Rick", "Tim", "Oliver", "Jesse"]>>\n\n/*determine whether or not the player is in the "approved" list of people\n then, determine the sex of the player*/\n\t<<if $Men.contains($name) or $Women.contains($name)>>\n\t\t<<set $nameFound = true>>\n\t<<endif>>\n\t<<set $sex = "M">>\n\t<<if $Women.contains($name)>>\n\t\t<<set $sex = "F">>\n\t<<endif>>\n<<if $nameFound eq true>>\n\t<table><tr><td><center>[img[cover]]</center></td><td> </td><td>Welcome, <<print $name>>\n\n\t<br><br>\n\tYou are about to embark on a great adventure. Whether or not you return alive depends on your making good decisions during your trip. Even if you survive, you may not be able to return home. Make good decisions, and you'll live to tell about your adventure. So, keep track of your [[survival and return indexes]].\n\t<br><br>\n\tLet's go on an adventure, shall we?\n\t<br><br>\n\n\t[[Continue...|The Beginning]]</td></tr></table>\n\n<<else>>\n<br>\n\tSorry, I don't know who <<print $name>> is!\n<<endif>>
<<silently>>\n\t<<if $EmeraldIsle eq true>>\n\t\t<<set $decrement = -2>>\n\t<<else>>\n\t\t<<set $decrement = 5>>\n\t<<endif>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n<<if ($FairWeather eq false) and ($EmeraldIsle eq false)>>[[Go back... You MUST choose a ship|Belém]]<<else>>It takes two days of motoring down the Amazon River on the //<<amazonShip>>// to get to Santarém. It is hot and humid. The mosquitoes are thick. The forest is full of strange noises. Fortunately, the inner rooms of the <<amazonShip>> promise protection from the elements.\n\n\n[[Continue...|Manaus]]\n\n[[South american map - small|small South American map]]\n[[South American map - large|large South American map]]\n<<endif>>\s
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n"Well, I <em>could</em> use a witness, considering that no one believes what I have to say about South America. I'll send you the details. Give your address to the butler. Now take your leave."\n\nWow. Professor Moss' reputation is not nearly as awful as the man himself. You stop by to see the butler, and then run at full speed out of the house.\n\n\n[[Continue...|receiveLetter]]
<<silently>>\n\t<<set $decrement = 1>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nTwo more days on the Amazon takes you to the town of Manaus. This town is the entryway to a no-man's-land that is formed by the half-defined frontiers between Peru, Brazil, and Columbia. \n\nIn this great district, untold numbers of species of plants and animals flourish. Most of them have never been seen by a human being except those who live in these parts. Sadly, the native people are not particularly friendly and you expect them to be an ever present problem. As Lord John said, "Wood and marsh and unpenetrated jungle. Who knows what it may shelter? And there to the south? A wilderness of swampy forest, where no white man has ever been. The unknown is up against us on every side. Outside the narrow lines of the rivers what does anyone know? Who will say what is possible in such a country?"\n\nIn Manaus, your desire just to rest up for a few days is helped by the fact that there is nothing else to do. \n\n\nDo you want to:\n<<link [[go for a swim|goSwimming]] disable>>\n<<link [[get some sleep|goSleeping]] disable>>\n\n[[South american map - small|small South American map]]\n[[South American map - large|large South American map]]
<<silently>>\n\t<<set $decrement = 5>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nThe taxi leaves you off in front of number 38 Waite Street.\n\nYou find Moss, sitting in a rotating chair behind a broad table, that is covered with books, maps, and diagrams. As you enter, his seat spins around to face you. You knew that Moss was big, but his size takes your breath away. His head is huge, the largest you have ever seen upon a human being. Your are sure that his top-hat, should you try to put it on, would slip over you entirely and rest on your shoulders. He has the face of a bull and a beard that is black and rippling down over his chest. His eyes are blue under huge eyebrows, very clear, very critical, and very masterful. He has huge shoulders, a chest like a barrel, and two enormous hands covered with long black hair. \n\nIn a bellowing, roaring, rumbling voice, Moss says, "And just who are //you// ?". \n\n\n[[Continue...|request]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nMoss, seating himself on the side of one of the canoes, says to Summerlee, "In the interest of making progress, and considering your most improbable of conclusions, I will follow at my leisure. If I am not the leader, you cannot expect me to lead."\n\nSmirking inside, you make a mental note of Moss' impeccable logic.\n\nThus ends the squabble that could easily have brought our journey to an end. With each person shouldering a package, you set out upon the hardest stage of the journey.\n\n\n[[Continue...|cloudsofMosquitoes]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nSeeing the blank paper, Professor Summerlee breaks out into uncontrollable laughter. \n\n"Moss is a self-confessed humbug. We have only to return home and report him as the fraud that he is."\n\n"Invisible ink!" you suggest.\n\n"I don't think!" says Lord Roxton, holding the paper to the light. "No, young fellah my lad, there is no use deceiving yourself. There's no sign that anything has ever been written on this paper."\n\n\n[[Continue...|MossArrives]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nJust now, you remember reading about a [[Professor Moss|ProfessorMoss]] who had returned from a trip to South America with grand tales of unknown creatures of enormous size. So crazy were his stories that other scientists thought him to be out of his mind. The rest thought he was just an outright liar.\n\nSouth America. Tracking down enormous creatures. \s\n\s\n<<if $sex eq "F">>\s\nHow death defying could an adventure get?\s\n<<else>>\s\nThis is an adventure that would certainly get Gwen's attention!\s\n<<endif>>\n\nBut, how do you get in touch with Professor Moss?\n\n\n[[Write Moss a letter|writeLetter]] or [[Visit Moss in person|visit]]
<<silently>>\n\t<<set $decrement = 1>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nBecause of the thick underbrush, you are forced to walk some distance into the jungle before you can turn parallel to the river. You hear the hollering of monkeys too near for comfort. They are unhappy with your presence. It is dark, except for a few rays of light that break through the canopy overhead. A bird swoops, as if to annoy you, and you yell out uncontrollably. Constantly looking around for danger as you walk, you are nervous, but thoughts of <<Gwen>> keep you going. Finally, you turn toward the river. A half hour after starting, you find yourself back at the river shore, not 20 yards from where you entered the jungle.\n\n\n[[Continue...|endOfTributary]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou leave <<Gwen>>'s house, wondering what your next step should be. How are you going to find the adventure that you are so much wanting?\n\n\n[[Continue...|Moss]]
<<silently>>\n\t<<set $decrement = 1>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou know that walking around the obstacle is your only option. But walking into the river is a little... scary. You use your walking stick to poke at the water ahead of you as you walk through the water. \n\nComing out the other side, you practically jump out of the river onto the shore, relieved to no longer be in that water. Thoughts of <<Gwen>> keep you walking forward.\n\n\n[[Continue...|endOfTributary]]
<<silently>>\n\t<<set $decrement = 5>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nWhatever creature was tormenting you must have become bored. You are exhausted and barely able to stay afloat, but after an hour, you are finally able to get to shore, which was even farther away than it looked from the boat. \n\nLaying on the ground next to the river, you hear only birds. No sound of a motor boat. No longer worried about strange creatures in the river, you are beginning to worry about your long term survival. And will you ever see <<Gwen>>? If you do, this whole thing will be quite the adventure, indeed!\n\n\n[[Yell for help|YellForHelp]]\n[[Walk back toward the main river|WalkbacktoRiver]]\n[[Walk toward Manaus|WalktoManaus]]
<<return>>\n\n[img[South american map - small|LWimages/south-america-map-small.jpg]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nAfter <<if $EmeraldIsle eq true>><<set $tripLength = 2>><<else>><<set $tripLength = 4>><<endif>><<print $tripLength>> more days' travel, you reach an Indian village, where the Professor insists that we should land. We would soon be running into rapids and the //<<if $EmeraldIsle eq true>><<print "Emerald Isle">><<else>><<print "Fair Weather">><<endif>>// would be able to take us no further. Professor Moss steps off the boat ahead of the rest of us, looks off into the distance, slaps his chest boastfully, and in a confident but excited voice, he announces that we are now approaching the door of the unknown country. You expect that, despite all that has gone down so far, the exciting part of the voyage is about to begin.\n\n\n[[Continue...|villagePrep]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n<b class="speaker">Two days later...</b>\n\nYou receive the following letter from Professor Moss. \n\n<table class="letter"><tr><td class="letterContents">Dear <<print $name>>,\n\nThe irrational contempt that my colleagues have for me prevents my traveling with you. So be it.\n\nNevertheless, here are the travel details. You will leave one week from tomorrow on the Caronia ocean liner, a rather luxurious vessel, I must say. I have appointed Lord John Roxton and Professor Summerlee to accompany you. The latter is a disagreeable old coot. He holds a wrong-headed and disengenuous opinion that I am ignorant, but he is a well respected Professor of Comparative Anatomy and, when you find what you are looking for, he, of all people, will convince the world that I have been right all along, and it is he who will be found to be the fool.\n\nYours expectantly,\n\nProfessor Moss</td></tr></table>\s\n\n\n[[Continue...|theDock]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nPrinted on the outside of the envelope:\n\n<table class="letter"><tr><td class="letterContents">Instructions to <<print $name>> and party. To be opened at Manaus on the 15th of the month, at 12 o'clock precisely.</td></tr></table>\s\n\n\n[[the Letter...|theLetter]]
<<silently>>\n\t<<set $decrement = -1>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou remember that both professors had the very poorest opinion of Dr. Illingworth of Boston. You believe that by simply mentioning his name, the two professors would form a temporary friendship in their dislike and abuse of this common rival. So, you give it a try.\n\n"And I wonder what Professor Illingworth would think of this place?" you say rather adventurously.\n\nThe diversion worked so well that you expect you will use this strategy for the rest of the journey every time the two pepper pots get into a tizzy. \n\n\n[[Continue...|cedingLeadership]]
Professor Harold I. Moss is a famous zoologist. He is a rather large man, with a huge head topped by plenty of black hair. His shoulders are very wide and his chest reminds one of a barrel. Thick, black eyebrows stand guard over his eyes and almost continuous with his full black beard. Black hair covers his hands. His voice is deep and rumbling, commanding great authority. \n\nA year ago, he came back from South America with a crazy story about some extremely large and odd animals. Despite his worldwide reputation as a comparative zoologist, most of his colleagues think him to be missing a few screws. \n\n<<return>>
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nFor over an hour, you sit listening to Chester go on and on with his endless chatter. \n\n<<if $sex eq "M">>At last, you are alone with <<Gwen>>. The moment of fate has come. You hold <<Gwen>> around the waist, kiss her, and screw up the courage to ask for her hand in marriage when... \s\n<<else>>When you walk into the sitting room, <<Gwen>> holds you around the waist and kisses you. You can see that he's very nervous...<<endif>>\n\n\n[[Continue...|the proposal]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou spend four days in the village, during which time, you gather two large canoes, made of a very light material so that we should be able to carry them round any obstacle. You help <<Gomez>> and Manuel load them up with our possessions and food. Summerlee was rather uselessly rummaging around the margins of the village collecting samples of odd-looking plants.\n\nProfessor Moss hires two locals, ''<<insert "Aucaman">> (//wild condor//)<<endinsert>>'' and ''<<insert "Quidel">> (//burning torch)//<<endinsert>>'' as guides for the rest of our trip. They appear to be terrified at the prospect of taking us to a part of the jungle about which many stories had been told, but the chief, by his patriarchal powers, gives them little choice.\n\n\n[[Continue...|settingOut]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n<<if $storyType eq "adventure">>\s\n<<if $sex eq "F">><b class="speaker"><<print $name>>:</b> I would love to go on a great adventure. You know, go somewhere where you are not sure you will ever return. I'd do things that were exciting and dangerous. I'd look Death in the face and have no fear of it. Oh, how I dream of such a time. \n\n<b class="speaker"><<Gwen>>:</b> <<print $name>>, I have the same dream. I can easily imagine it, but <em>doing</em> it eq another matter. I think you should go for it!\n<<else>><b class="speaker">Gwen:</b> ...a strong man, not so ready to adapt himself to the whims of a silly girl like me. He must be a man who could <em>do</em>, who could <em>act</em>, who could look Death in the face and have no fear of it, a man of great deeds and wonderful experiences.\n\n<b class="speaker"><<print $name>>:</b> If I can listen to your father tell his stories that go on forever, then I think I can face Death, don't you? \n\n<b class="speaker"><<Gwen>>:</b> (Laughing) Then, go for it, <<print $name>>!<<endif>>\n\n\n[[Continue...|wondering]]\s\n<<else>>\s\n\s\n<<if $sex eq "F">><b class="speaker"><<print $name>>:</b> I mean, we're too young, too inexperienced in life. I would love to go on a great adventure. You know, go somewhere where you are not sure you will ever return. I'd do things that were exciting and dangerous. I'd look Death in the face and have no fear of it. Oh, how I dream of such a time. \n\n<b class="speaker"><<Gwen>>:</b> <<print $name>>, I have the same dream. I can easily imagine it, but <em>doing</em> it is another matter. I think you should go for it!\s\n<<else>><b class="speaker">Gwen:</b> ...a strong man, not so ready to adapt himself to the whims of a silly girl like me. He must be a man who could <em>do</em>, who could <em>act</em>, who could look Death in the face and have no fear of it, a man of great deeds and wonderful experiences.\n\n<b class="speaker"><<print $name>>:</b> We can't all be like that, Gwen. But, if that is what it takes to please you and to win you, then I will... \n\n<b class="speaker"><<Gwen>>:</b> Not another word! When you have won your place in the world, then we'll talk about it.<<endif>>\n\n\n[[Continue...|wondering]]\s\n<<endif>>\s
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nAbout three o'clock in the afternoon, you come to a very steep rapid, more than a mile long -- the very one that you had read about back home in reports of Professor Moss' previous trip to this area. The sight of it is a great comfort for you, for it is really the first direct evidence, slight as it might be, of the truth of Moss' story. \n\nAucaman and Quidel carry first the canoes and then the stores through the jungle, which is very thick at this point, while the rest of us, our rifles on our shoulders, walk between them and any danger coming from the woods. \n\nBy evening, you have successfully passed the rapids, and then, back in the canoes, you make your way some ten miles above them, where you anchor for the night. At this point, you figure that you have come about a hundred miles up the tributary from the main stream.\n\n\n[[Continue...|AssaiLandmark]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nChester Hopkins, <<her-his>> father, is the most awkward man on earth. His clothes are too big, too out of fashion, and too old. His stories always begin with, "When <em>I</em> was your age..." Thankfully, he never sees when you roll your eyes. Whenever you come over to his house, he thinks that you come to see him. But, really, you always come to see his <<if $sex eq "M">>daughter, Gwen<<else>>son, Glenn<<endif>>. <<if $sex eq "M">>She<<else>>He<<endif>> is wonderful and smart and <<if $sex eq "M">>beautiful<<else>>handsome<<endif>>.\n\nIs there going to be [[kissing][$storyType to "kissing"]] or [[adventure][$storyType to "adventure"]]?
<<silently>>\n\t<<set $decrement = 2>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nThe cruise to Rio de Janeiro is uneventful, though long. You book a bus to take the group to Brasilia, about a 600 mile trip. On the bus, the luxurious treatment received on the ocean liner is wearing thin. But, finally, you arive in Brasilia.\n\nYou mumble to Lord John that the Pereira da Pinta Company is being very helpful in finding what is needed for the trip inland. You hire a tour guide <<if $sex eq"F">>with jet black hair named, appropriately,<<else>>named<<endif>> <<Gomez>> along with a laborer, Manuel. Roxton and <<Gomez>> then go about buying supplies (tents, bedding, food, guns, binoculars) and renting a Jeep. There are a lot of preparations and you spend the good part of a week in Brasilila.\n\nFinally, with <<Gomez>> at the wheel, and the gear packed inside and on top of the Jeep, you set off for Belém near the mouth of the Amazon.\n\n[[South american map - small|small South American map]]\n[[South American map - large|large South American map]]\n\n\n[[Continue...|Belém]]
he drew out a map of South America and laid it on the table.\n\nThere are just some narrow water-lanes along which folk travel, and outside that it is all darkness. Now, down here in the Mato Grosso"--he swept his hand over a part of the map--"or up in this corner where three countries meet, nothin' would surprise me. As that chap said to-night, there are fifty-thousand miles of water-way runnin' through a forest that is very near the size of Europe. \n\n[[large South American map|large South American map]]\n[[small South American map|small South American map]]\n\n
<<return>>\n\nThe //Emerald Isle// is a 46 foot yacht that boasts a 52' flat screen LCD TV with DirecTV Satellite television, Bose surround sound entertainment system, BluRay Player, Stereo with iPod hookup, Sirius Radio, and WiFi internet access.\n\nThe aft deck's custom teak table comfortably seats up to 10 people and is adjacent to the fully stocked refrigerator and kitchenette.\n\n//Emerald Isle//’s three luxury staterooms are meant to serve every need. The forward stateroom has a walk-around over-sized Queen bed with marble end tables. Port and starboard staterooms both have Double beds with Single bed above.\n\nAll staterooms have en-suite bathroom with marble or granite counter tops and enclosed shower stall. Each bedroom also has its own LCD flat-screen television with Satellite TV, DVD/CD/MP3 player, and individual climate control, air conditioned 24/7. Each stateroom is individually climate controlled with air conditioning.
<<silently>>\n\t<<set $decrement = 3>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou are hoping that the two professors will respond to a stern warning. \n\nIn a loud voice, you shout, "Gentlemen!"\n\nAnd then a little softer, "We don't have time for this. Get along or get out."\n\nYou immediately discern that the harsh approach is the wrong one. Nearly at the same time, both professors come back, "And just who do you think //you// are?" You turn red with some combination of embarrassment and anger.\n\nMoss continues immediately, "Leadership of this expedition could hardly fall to anyone but he who has the superior intellect. And that would not be you, for sure. As for Summerlee... well I hardly can expect for him to provide the same quality of leadership as myself."\n\n\n[[Continue...|cedingLeadership]]
<h2>Professor Summerlee</h2>\s\nProfessor Summerlee is a tall, gaunt, stringy figure with a dry, half-sarcastic, and often wholly unsympathetic manner. Though in his sixty-sixth year, his power of endurance is as great as your own. In temper he is naturally acid and sceptical. From the beginning he has never concealed his belief that Professor Challenger is an absolute fraud, that we are all embarked upon an absurd wild-goose chase and that we are likely to reap nothing but disappointment and danger in South America, and corresponding ridicule in England. \n\nHe spends his days flitting through the woods with his shot-gun and his butterfly-net, and his evenings in mounting the many specimens he has acquired. Among his minor peculiarities are that he is careless as to his attire, unclean in his person, exceedingly absent-minded in his habits, and addicted to smoking a short briar pipe, which is seldom out of his mouth.\n\n<<return>>
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nCrossing another ridge, you come, all of a sudden, to your destination: an irregular, palm-studded plain, and then the line of high red cliffs that you had seen in the picture that Moss had shown you back home. There is no question that you are at the same place. \n\nMoss struts about like a proud peacock, but Summerlee is still skeptical. You figure it's about 7 miles from your camp to the cliffs. \n\n\n[[Continue...|]]
data:image/png;base64,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
<<silently>>\n\t<<set $decrement = 3>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou grit your teeth, not knowing what in the world is playing with you. When you come up for air, you hear <<Gomez>> yell that he has found a rope.\n\nA small pile of rope hits you on the back of the head. You grab for it instantly just as you're being pulled under again. <<Gomez>> and Manuel drag you to the boat and up, out of the river. You lay on the floor of the //<<amazonShip>>//, gasping. You repeat, "Thank you" over and over. \n\n\n[[Continue...|shortman]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nEnter your letter to Professor Moss. If you need help, then type <b class="speaker">help</b>.\n\nDear Professor Moss, \n\n<<textarea "$letter1" "" autofocus>>\s\n\n\n[[Continue...|showLetter]]\n
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nFor over an hour, you sit listening to Chester go on and on with his endless jabbering. \n\nAt last you are alone with \s\n<<if $sex eq "M">>\s\n<<Gwen>>. She has been your best friend since first grade. Much to your surprise, she tells you about her ideal man...\n<<else>>\s\n<<Gwen>>. He has been your best friend since first grade. Somewhere in your talking together, you tell him about things that you would love to do someday...\n<<endif>>\s\n\n\n[[Continue...|the dare]]
<<silently>>\n\t<<set $decrement = 5>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nYou grab a fallen branch to use as a walking stick and start hiking back toward the main river. You come to a place where the jungle juts right up to the river, making the shore an impossible place to walk. \n\n\n[[Walk into the jungle|walkInJungle]]\n[[Walk into the river|walkInRiver]]
adapted by\nRick Rawson
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n<table class="letter"><tr><td class="letterBlank"> </td></tr></table>\s\n\n[[Continue...|responseToLetter]]
<<silently>>\n\t<<set $decrement = -2>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nIt is getting late and it has been a long day. You hit the sack for good night's sleep. The gentle rocking of the boat lulls you to sleep in seconds.\n\n\n[[Continue...|shortman]]
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n<b class="speaker">One week later...</b>\n\nAs you approach the pier where the RMS Caronia is docked, you hear a shout from behind. Professor Moss arrives unexpectedly to send you off.\n\n"My directions for your instruction and guidance are in this sealed envelope. You will open it when you reach a town upon the Amazon which is called Manaus, but not until the date and hour which is marked upon the outside. Have I made myself clear? Good bye, <<print $name>>. I put no restictions on what you might write home about. Good-bye, [[Lord John Roxton]]. Science is not your 'thing' but I expect that you will be thrilled to bring down a Tyranosaurus Rex. And good-bye to you also, [[Professor Summerlee]]. If you are still capable of self-improvement, of which I am frankly unconvinced, you will surely return to London a wiser man."\n\nMoss turns and leaves without ceremony. You and your comrades head for the gate.\n\n\n[[Continue...|shipTrip]]
/* Your story will use the CSS in this passage to style the page.\nGive this passage more tags, and it will only affect passages with those tags. */\n\n/* @import url(http://fonts.googleapis.com/css?family=Noto+Serif); */\n/*@import url(http://fonts.googleapis.com/css?family=Indie+Flower);*/\n\nbody {\n\t/* This affects the entire page. */\n\n\t/* Remove default styles */\n\tcolor: #000000;\n\tbackground-color: #FFFFFF;\n\t/*margin: 0;*/\n font-family: 'Verdana', cursive;\n\t/*font-family: 'Indie Flower', cursive;*/\n}\nhr.orangeHR {\n\theight: 2px; \n\tborder: none; \n\tcolor: #E36C0A; \n\tbackground-color: #E36C0A; \n}\n#ui-bar header, #menu, #ui-bar {\n\tbackground-color: #FFFFFF;\n\tcolor: #666666; /*this controls the color of text in the UI bar*/\n}\n#sidebar {\n\tleft: 7.5em;\n\tmargin: 0;\n\tpadding: 0 1em 0 0;\n\tfont: bold 1.1em 'Noto Serif',sans-serif;\n}\n#sidebar ul {\n\tpadding: 0;\n}\n#sidebar li {\n\ttext-align: right;\n\tbackground-repeat: no-repeat;\n\tmargin-bottom: 1em;\n\tline-height: 1.4em;\n\tlist-style: none;\n}\n#sidebar li a {\n\ttext-decoration: none;\n\tcolor: #ff0000;\n}\n#sidebar li a:hover, #sidebar #title a:hover, #snapback:hover, #restart:hover {\n\tcursor: pointer;\n\ttext-decoration: none;\n}\n/* modify StoryTitle */\n#story-title {\n color: #b31b1b;\n\tmargin-top: 2em;\n\tmargin-bottom: 0em;\n}\n\n#story-author {\n\tcolor: #000000;\n\tfont-size: 0.85em;\n\tfont-style: bold;\n\ttext-align: right;\n}\n\n/* story-caption along with StoryCaption passage used to display stuff in sidebar */\n#story-caption {\n\tcolor: #b31b1b;\n\tfont-size:0.8em;\n\tfont-weight:bold;\n\ttext-align: right;\n\tmargin-top: 5em;\n}\n#story-subtitle {\n margin-top: 0em;\n text-align: center;\n\tcolor: #666666; \n}\n}\n#sidebar #storyMenu {\n\tline-height: 2.5em;\n\tmargin-bottom: .5em;\n\tcursor: auto;\n}\n#sidebar #credits {\n\tpadding-top: 2em;\n\tfont-weight: normal;\n\tfont-size: 80%;\n}\n#sidebar #credits:hover {\n\tcolor: #E36C0A;;\n}\n#sidebar #credits a {\n\ttext-decoration: none;\n}\n.passage {\n\t/* This only affects passages */\n\tcolor: #000000;\n\n\t/* Passage width */\n\t/* width: 640px; */\n\twidth: auto;\n\n\t/* Passage height */\n\theight: auto;\n\n\t/* Centers the passage horizontally */\n\tmargin-left: auto;\n\tmargin-right: auto;\n\n\t/* Padding */\n\tpadding-top:25px;\n\tpadding-bottom:25px;\n\tpadding-right:50px;\n\tpadding-left:50px;\n\n\t/* Text formatting */\n\tfont-style: normal;\n\tfont-variant: normal;\n\tfont-weight: normal;\n\tfont-stretch: normal;\n\tfont-size: 1.0em;\n\t/*line-height: normal;*/\n\t/* line-height 1.4 is a little wider than normal at 1.2*/\n\tline-height: 1.4;\n font-family: 'Verdana', cursive;\n\t/*font-family: 'Indie Flower', cursive;*/\n\n\ttext-align: justify;\n\n\t/* Sets a border around the passage */\n\tborder-style: solid;\n\tborder-width: 0;\n\n\t/* Sets the passage background color */\n\tbackground: #EFEFEF;\n}\n.speaker {\n\tcolor: #00aa00;\n\tfont-weight: bold;\n}\n.redText\t{\n\tcolor: #b31b1bl;\n}\n#passages .textArea {\n\twidth: 600px;\n\theight: 200px;\n}\na {\n\tcursor: pointer;\n\t/*color: #46d;*/\n\tcolor: #003FFF;\n\ttext-decoration: none;\n}\na:hover {\n\tcolor: #E36C0A;\n\ttext-decoration: none;\n}\na:active {\n\tcolor: #E36C0A;\n\ttext-decoration: none;\n}\n\na.link-internal, a.link-external {\n\tfont-weight: bold;\n\ttext-decoration: none;\n}\na.link-internal:hover, a.link-external:hover {\n\ttext-decoration: none;\n}\n/*CSS for <<choice>> links that are disabled*/\n.link-disabled { \n\t/*display:none; */\n\tcolor: #868686;\n}\n/* used to highlight marked text -- @@marked text@@*/\n.highlight, .marked {\n\tbackground: yellow;\n\tcolor: black;\n\tfont-weight: bold;\n\tfont-style: italic;\n}\n.greenLink a {\n\tcolor: #00aa00;\n\tfont-weight: bold;\n\t/* This affects passage links */\n}\n.orangeText {\n\tcolor: #E36C0A; \n\tfont-weight: bold;\n}\ntable.indexValue td {\n\twidth: 140px;\n\tcolor: #E36C0A;\n\tfont-weight: normal;\n\tfont-size: 0.75em;\n}\ntable.letter {\n\tborder: 5px solid #3F3F3F; \n\twidth: 100%;\n\tbackground-color: #FFFFFF;\n}\n\n/*for use when a letter contains some text*/\ntd.letterContents {\n\tpadding: 20px;\n\tbackground-color: #FFFFFF;\n}\n\n/*for use with the blank letter in passage theLetter*/\ntd.letterBlank {\n\theight: 350px;\n\tpadding: 10px;\n\tbackground-color: #FFFFFF;\n}\n\n/*! <<replacelink>> macro set for SugarCube 2.x */\n.revision-span-in {\n\topacity: 0;\n}\n.revision-span:not(.revision-span-out) {\n\t-webkit-transition: 1s;\n\ttransition: 1s;\n}\n.revision-span-out {\n\tposition: absolute;\n\topacity: 0;\n}\n\n/*========= TRANSITIONS =====================*/\n\n.transition-in {\n\topacity: 0;\n\tposition: absolute;\n}\n.passage {\n\ttransition: 1s;\n\t-webkit-transition: 1s;\n}\n.transition-out {\n\topacity: 0 !important;\n\tposition: absolute;\n}\n\n
<<silently>>\n\t<<set $decrement = 0>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\nOn the ninth day after leaving the canoes, and having traveled already about 120 miles, you emerge from the trees into an area covered by small bushes, which eventually are replaced by a large wilderness of bamboo. You have to cut your way through the bamboo with machetes, barely being able to see Lord John's jacket in front of you. You can't see much of anything through the stand of bamboo, but occasionally hear the plunging sound of a large animal. Lord John tells you they sound like some sort of wild cattle. \n\nJust as night comes, you clear the belt of bamboo and camp for the night.\n\n\n[[Continue...|inthePlain]]
<<silently>>\n\t<<set $decrement = -1>>\n<<endsilently>>\s\n<<tallyIndexes>>\s\n<<if $sex eq "M">><b class="speaker"><<Gwen>>:</b> Don't! I have a feeling that you are going to propose, <<print $name>>. I do wish you wouldn't, because things are so much nicer between us as they are.\n\n<b class="speaker"><<print $name>>:</b> Now, how did you know that I was going to propose?\n\n<b class="speaker"><<Gwen>>:</b> Don't women always know? Besides <<print $name>>, I'm waiting for my ideal man.\n\n<b class="speaker"><<print $name>>:</b> And what is your ideal?\n\n<b class="speaker"><<Gwen>>:</b> My ideal man would be...<<else>>\s\n<b class="speaker"><<print $name>>:</b> You're going to propose, aren't you <<Gwen>>?\n\n<b class="speaker"><<Gwen>>:</b> How did you know?\n\n<b class="speaker"><<print $name>>:</b> Don't women always know? Besides, I'm not ready. And neither are you. \n\n<b class="speaker"><<Gwen>>:</b> What do you mean?<<endif>>\n\n\n[[Continue...|the dare]]